00001 /* 00002 * @file bit_bang_uart.h 00003 * 00004 * @brief public methods for bit_bang_uart.c 00005 * 00006 * $Rev: 493 $ 00007 * $Author: dsmith $ 00008 * $Date: 2010-05-17 19:44:22 -0700 (Mon, 17 May 2010) $ 00009 */ 00010 #ifndef BIT_BANG_UART_H 00011 #define BIT_BANG_UART_H 00012 00013 #define NO_CHARACTER_RECEIVED 0xFF 00014 00015 void bitBangOutput(unsigned char outputByte); 00016 char bitBangInput(); 00017 00018 #endif
1.6.3